home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / nt4.0 server / U1800XLO.PP_ / u1800xlo.ppd
Text File  |  1996-04-25  |  30KB  |  765 lines

  1. *% Adobe Systems PostScript(R) Printer Description File
  2. *% For "Unity 1800XLO"
  3. *%
  4. *% Copyright 1992, 1993, 1994 LaserMaster Corporation
  5. *% All Rights Reserved.
  6. *% Permission is granted for redistribution of this file as
  7. *% long as this copyright notice is intact and the contents
  8. *% of the file is not altered in any way from its original form.
  9. *%
  10. *%
  11. *% Date: 7 September, 1994
  12. *FormatVersion: "3.0"
  13. *FileVersion: "4.3"
  14. *LanguageVersion: English
  15.  
  16. *Product: "(Unity 1800XL)"
  17. *PSVersion: "(2002.001) 1"
  18. *NickName: "Unity 1800XL-O"
  19.  
  20. *% PC Driver Flags ===============
  21. *AcceptsTrueType: True
  22. *AcceptsBinary: True
  23. *JobOptionDlg: False
  24.  
  25. *% General Information and Defaults ===============
  26. *ColorDevice: False
  27. *FreeVM: "2210119"
  28. *VariablePaperSize: False
  29. *FileSystem: True
  30. *?FileSystem: "
  31. save statusdict begin
  32.     (False) /diskstatus where{
  33.         pop diskstatus exch pop 0 ne {pop (True)} if
  34.     }if = flush
  35. end restore
  36. "
  37. *End
  38. *Throughput: "8"
  39. *Password: "0"
  40. *ExitServer: "
  41.   count 0 eq {  % is the password on the stack?
  42.     true 
  43.   }{
  44.     dup    % potential password
  45.     statusdict begin checkpassword end not
  46.   } ifelse 
  47.   {  %  if no password or not valid 
  48.     (WARNING : Cannot perform the exitserver command.) = 
  49.     (Password supplied is not valid.) = 
  50.     (Please contact the author of this software.) = flush
  51.     quit
  52.   } if 
  53.   serverdict begin exitserver
  54. "
  55. *End
  56.  
  57. *Reset: "
  58.   count 0 eq {  % is the password on the stack?
  59.     true 
  60.   }{
  61.     dup    % potential password
  62.     statusdict begin checkpassword end not
  63.   } ifelse
  64.   {  %  if no password or not valid
  65.     (WARNING : Cannot reset printer.) =
  66.     (Password supplied is not valid.) =
  67.     (Please contact the author of this software.) = flush
  68.     quit
  69.   } if
  70.   serverdict begin exitserver
  71.   systemdict /quit get exec
  72.   (WARNING : Printer Reset Failed.) = flush
  73. "
  74. *End
  75.  
  76. *DefaultResolution: 1800dpi
  77. *SetResolution 600dpi: "statusdict begin true proofmode end"
  78. *SetResolution 1800dpi: "statusdict begin false proofmode end"
  79.  
  80. *?Resolution: "
  81. save
  82.   initgraphics
  83.   0 0 moveto currentpoint matrix defaultmatrix transform
  84.   0 72 lineto currentpoint matrix defaultmatrix transform
  85.   3 -1 roll sub dup mul
  86.   3 1 roll exch sub dup mul
  87.   add sqrt round cvi
  88.   (          ) cvs print (dpi) = flush
  89. restore
  90. "
  91. *End
  92.  
  93. *% Halftone Information ===============
  94. *ScreenFreq: "85.0"
  95. *ScreenAngle: "45.0"
  96. *DefaultScreenProc: Dot
  97. *ScreenProc Dot: "
  98.     { abs exch abs 2 copy add 1 gt
  99.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  100.         { dup mul exch dup mul add 1.0 exch sub }
  101.     ifelse }
  102. "
  103. *End
  104. *ScreenProc Line: "{ pop }"
  105. *ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
  106.  
  107. *DefaultTransfer: Null
  108. *Transfer Null: "{ }"
  109. *Transfer Null.Inverse: "{ 1 exch sub }"
  110.  
  111. *% Paper Handling ===================
  112.  
  113. *% Use these entries to set paper size most of the time, unless there is
  114. *% specific reason to use PageRegion or PaperTray.
  115. *DefaultPageSize: Letter
  116. *PageSize A3: "a3"
  117. *PageSize A3.Extra: "a3_extra"
  118. *PageSize A4: "a4"
  119. *PageSize A4Small: "a4small"
  120. *PageSize A4.Transverse: "a4.transverse"
  121. *PageSize B5: "b5"
  122. *PageSize Letter: "letter"
  123. *PageSize LetterSmall: "lettersmall"
  124. *PageSize Letter.Transverse: "letter.transverse"
  125. *PageSize Legal: "legal"
  126. *PageSize Tabloid: "11x17"
  127. *PageSize TabloidExtra: "tabloid_extra"
  128. *PageSize Oversize: "LMoversize"
  129. *PageSize OversizePlus: "LMoversize"
  130. *PageSize Envelope.297.684/C10 Envelope: "com10envelope"
  131. *PageSize Envelope.312.624/DL Envelope: "dlenvelope"
  132.  
  133. *?PageSize: "
  134. save statusdict begin
  135.  /papersize where{ pop
  136.   12 dict begin
  137.    /a3 (A3) def 
  138.    /a3_extra (A3.Extra) def 
  139.    /a4 (A4) def
  140.    /a4small (A4Small) def
  141.    /a4.transverse (A4.Transverse) def
  142.    /letter (Letter) def 
  143.    /lettersmall (LetterSmall) def 
  144.    /letter.transverse (Letter.Transverse) def 
  145.    /legal (Legal) def
  146.    /11x17 (Tabloid) def
  147.    /LMoversize (Oversize) def
  148.    /tabloid_extra (TabloidExtra) def
  149.    /com10envelope (Envelope.297.684/C10 Envelope) def
  150.    /dlenvelope (Envelope.312.624/DL Envelope) def
  151.  
  152.    papersize {
  153.      {load exec} stopped not{= flush}if
  154.   }{
  155.      {load exec} stopped not{print (.Transverse) = flush}if
  156.    }ifelse
  157.   end
  158.   }{
  159.   /pagetype where{pop[(Letter)(Legal)]pagetype dup 1 gt{pop 1}if get = flush}if
  160.    }ifelse
  161. end restore
  162. "
  163. *End
  164.  
  165. *% These entries will set up the frame buffer. Usually used with manual feed.
  166. *DefaultPageRegion: Letter
  167. *PageRegion A3: "a3"
  168. *PageRegion A3.Extra: "a3_extra"
  169. *PageRegion A4: "a4"
  170. *PageRegion A4Small: "a4small"
  171. *PageRegion A4.Transverse: "a4.transverse"
  172. *PageRegion B5: "b5"
  173. *PageRegion Letter: "letter"
  174. *PageRegion LetterSmall: "lettersmall"
  175. *PageRegion Letter.Transverse: "letter.transverse"
  176. *PageRegion Legal: "legal"
  177. *PageRegion Tabloid: "11x17"
  178. *PageRegion TabloidExtra: "tabloid_extra"
  179. *PageRegion Oversize: "LMoversize"
  180. *PageRegion OversizePlus: "LMoversize"
  181. *PageRegion Envelope.297.684/C10 Envelope: "com10envelope"
  182. *PageRegion Envelope.312.624/DL Envelope: "dlenvelope"
  183.  
  184. *% These entries will invoke a particular tray--error may occur if tray is not inserted.
  185. *% These errors should be trapped by software and a message displayed
  186. *DefaultPaperTray: None
  187. *PaperTray A3: ""
  188. *PaperTray A3.Extra: ""
  189. *PaperTray A4: ""
  190. *PaperTray A4.Transverse: ""
  191. *PaperTray B5: ""
  192. *PaperTray Letter: ""
  193. *PaperTray Letter.Transverse: ""
  194. *PaperTray Legal: ""
  195. *PaperTray Tabloid: ""
  196. *PaperTray TabloidExtra: ""
  197. *PaperTray Oversize: ""
  198. *PaperTray Envelope.297.684/C10 Envelope: ""
  199. *PaperTray Envelope.312.624/DL Envelope: ""
  200.  
  201. *% The following entries provide information about specific paper keywords.
  202. *DefaultImageableArea: Letter
  203. *ImageableArea A3: "18 20 824 1171 "
  204. *ImageableArea A3.Extra: "0 0 856 1211 "
  205. *ImageableArea A4: "15 10 580 832 "
  206. *ImageableArea A4Small: "26 31 569 811 "
  207. *ImageableArea A4.Transverse: "10 15 832 580 "
  208. *ImageableArea B5: "21 10 500 715 "
  209. *ImageableArea Letter: "15 8 597 784 "
  210. *ImageableArea LetterSmall: "30 31 582 761 "
  211. *ImageableArea Letter.Transverse: "8 15 784 597"
  212. *ImageableArea Legal: "15 8 597 1000 "
  213. *ImageableArea Tabloid: "15 8 777 1216 "
  214. *ImageableArea TabloidExtra: "0 0 812 1244 "
  215. *ImageableArea Oversize: "0 0 839 1368 "
  216. *ImageableArea OversizePlus: "5 0 859 1368 "
  217. *ImageableArea Envelope.297.684/C10 Envelope: "11 14 287 670"
  218. *ImageableArea Envelope.312.624/DL Envelope: "4 4 308 620"
  219.  
  220. *% These provide the physical dimensions of the paper (by keyword)
  221. *DefaultPaperDimension: Letter
  222. *PaperDimension A3: "842 1191"
  223. *PaperDimension A3.Extra: "856 1211"
  224. *PaperDimension A4: "596 842"
  225. *PaperDimension A4Small: "596 842"
  226. *PaperDimension A4.Transverse: "842 596"
  227. *PaperDimension B5: "516 729"
  228. *PaperDimension Letter: "612 792"
  229. *PaperDimension LetterSmall: "612 792"
  230. *PaperDimension Letter.Transverse: "792 612"
  231. *PaperDimension Legal: "612 1008"
  232. *PaperDimension Tabloid: "792 1224"
  233. *PaperDimension TabloidExtra: "812 1244"
  234. *PaperDimension Oversize: "852 1368"
  235. *PaperDimension OversizePlus: "864 1368"
  236. *PaperDimension Envelope.297.684/C10 Envelope: "297 684"
  237. *PaperDimension Envelope.312.624/DL Envelope: "312 624"
  238.  
  239. *DefaultOutputBin: OnlyOne
  240. *DefaultInputSlot: AutoSelect
  241. *InputSlot AutoSelect: "statusdict begin -2 lmsetdefaulttray end"
  242. *InputSlot Upper: "statusdict begin 1 lmsetdefaulttray end"
  243. *InputSlot Lower: "statusdict begin 2 lmsetdefaulttray end"
  244. *InputSlot EnvelopeManual: "statusdict begin 3 lmsetdefaulttray end"
  245.  
  246. *DefaultManualFeed: False
  247. *?ManualFeed: "
  248. save
  249.   statusdict /manualfeed get
  250.  {(True)}{(False)}ifelse = flush
  251. restore 
  252. "
  253. *End
  254. *ManualFeed True: "statusdict begin /manualfeed true store end"
  255. *ManualFeed False: "statusdict begin /manualfeed false store end"
  256.  
  257. *DefaultOutputOrder: Normal
  258.  
  259. *DefaultCollator: None
  260. *DefaultSorter: None
  261. *DefaultDuplex: None
  262.  
  263. *% Font Information =====================
  264.  
  265. *DefaultFont: Courier
  266. *Font Antiqua-Medium-DTC: Standard "(001.003)"
  267. *Font Antiqua-MediumItalic-DTC: Standard "(001.003)"
  268. *Font Antiqua-Regular-DTC: Standard "(001.003)"
  269. *Font Antiqua-RegularItalic-DTC: Standard "(001.003)"
  270. *Font Antiqua-Ultra-DTC: Standard "(001.003)"
  271. *Font Antiqua-UltraItalic-DTC: Standard "(001.003)"
  272. *Font AvantGarde-Book: Standard "(001.003)"
  273. *Font AvantGarde-BookOblique: Standard "(001.003)"
  274. *Font AvantGarde-Demi: Standard "(001.003)"
  275. *Font AvantGarde-DemiOblique: Standard "(001.003)"
  276. *Font Blippo-Black-DTC: Standard "(001.003)"
  277. *Font Bookman-Demi: Standard "(001.003)"
  278. *Font Bookman-DemiItalic: Standard "(001.003)"
  279. *Font Bookman-Light: Standard "(001.003)"
  280. *Font Bookman-LightItalic: Standard "(001.003)"
  281. *Font Britannic-Bold-DTC: Standard "(001.003)"
  282. *Font Britannic-Light-DTC: Standard "(001.003)"
  283. *Font Britannic-Medium-DTC: Standard "(001.003)"
  284. *Font Broadway-DTC: Standard "(001.003)"
  285. *Font Brody-DTC: Standard "(001.003)"
  286. *Font BrushScript-DTC: Standard "(001.003)"
  287. *Font Chaucer-DTC: Standard "(001.003)"
  288. *Font Clarendon-Bold-DTC: Standard "(001.003)"
  289. *Font Clarendon-Light-DTC: Standard "(001.003)"
  290. *Font Clearface-Black-DTC: Standard "(001.003)"
  291. *Font Clearface-BlackItalic-DTC: Standard "(001.003)"
  292. *Font Clearface-Heavy-DTC: Standard "(001.003)"
  293. *Font Clearface-HeavyItalic-DTC: Standard "(001.003)"
  294. *Font Clearface-Regular-DTC: Standard "(001.003)"
  295. *Font Clearface-RegularItalic-DTC: Standard "(001.003)"
  296. *Font ClearfaceGothic-Bold-DTC: Standard "(001.003)"
  297. *Font ClearfaceGothic-ExtraBold-DTC: Standard "(001.003)"
  298. *Font ClearfaceGothic-Regular-DTC: Standard "(001.003)"
  299. *Font Cooper-Black-DTC: Standard "(001.003)"
  300. *Font Cooper-BlackItalic-DTC: Standard "(001.003)"
  301. *Font Copperplate-Bold-DTC: Standard "(001.003)"
  302. *Font Courier: Standard "(001.003)"
  303. *Font Courier-Bold: Standard "(001.003)"
  304. *Font Courier-BoldOblique: Standard "(001.003)"
  305. *Font Courier-Oblique: Standard "(001.003)"
  306. *Font Eurostile-Black-DTC: Standard "(001.003)"
  307. *Font Eurostile-Roman-DTC: Standard "(001.003)"
  308. *Font EurostileExtended-Black-DTC: Standard "(001.003)"
  309. *Font EurostileExtended-Roman-DTC: Standard "(001.003)"
  310. *Font FlareGothic-Bold-DTC: Standard "(001.003)"
  311. *Font FlareGothic-BoldItalic-DTC: Standard "(001.003)"
  312. *Font FlareGothic-Light-DTC: Standard "(001.003)"
  313. *Font FlareGothic-LightItalic-DTC: Standard "(001.003)"
  314. *Font FlareGothic-Regular-DTC: Standard "(001.003)"
  315. *Font FlareGothic-RegularItalic-DTC: Standard "(001.003)"
  316. *Font FrugalSans-Bold-DTC: Standard "(001.003)"
  317. *Font FrugalSans-BoldItalic-DTC: Standard "(001.003)"
  318. *Font FrugalSans-Light-DTC: Standard "(001.003)"
  319. *Font FrugalSans-LightItalic-DTC: Standard "(001.003)"
  320. *Font Garamond-Bold-DTC: Standard "(001.003)"
  321. *Font Garamond-BoldItalic-DTC: Standard "(001.003)"
  322. *Font Garamond-Book-DTC: Standard "(001.003)"
  323. *Font Garamond-BookItalic-DTC: Standard "(001.003)"
  324. *Font GaramondCondensed-Bold-DTC: Standard "(001.003)"
  325. *Font GaramondCondensed-BoldItalic-DTC: Standard "(001.003)"
  326. *Font GaramondCondensed-Book-DTC: Standard "(001.003)"
  327. *Font GaramondCondensed-BookItalic-DTC: Standard "(001.003)"
  328. *Font Goudy-Bold-DTC: Standard "(001.003)"
  329. *Font Goudy-Heavyface-DTC: Standard "(001.003)"
  330. *Font Goudy-Light-DTC: Standard "(001.003)"
  331. *Font GoudyCatalogue-Italic-DTC: Standard "(001.003)"
  332. *Font GoudyOldStyle-Regular-DTC: Standard "(001.003)"
  333. *Font GoudyOldStyle-RegularItalic-DTC: Standard "(001.003)"
  334. *Font Helvetica: Standard "(001.003)"
  335. *Font Helvetica-Bold: Standard "(001.003)"
  336. *Font Helvetica-BoldOblique: Standard "(001.003)"
  337. *Font Helvetica-Narrow: Standard "(001.003)"
  338. *Font Helvetica-Narrow-Bold: Standard "(001.003)"
  339. *Font Helvetica-Narrow-BoldOblique: Standard "(001.003)"
  340. *Font Helvetica-Narrow-Oblique: Standard "(001.003)"
  341. *Font Helvetica-Oblique: Standard "(001.003)"
  342. *Font Hobo-DTC: Standard "(001.003)"
  343. *Font Kauflinn-DTC: Standard "(001.003)"
  344. *Font Korinna-ExtraBold-DTC: Standard "(001.003)"
  345. *Font Korinna-ExtraBoldItalic-DTC: Standard "(001.003)"
  346. *Font Korinna-Regular-DTC: Standard "(001.003)"
  347. *Font Korinna-RegularItalic-DTC: Standard "(001.003)"
  348. *Font Mariage-DTC: Standard "(001.003)"
  349. *Font MuralScript-DTC: Standard "(001.003)"
  350. *Font NewBaskerville-Bold-DTC: Standard "(001.003)"
  351. *Font NewBaskerville-BoldItalic-DTC: Standard "(001.003)"
  352. *Font NewBaskerville-Roman-DTC: Standard "(001.003)"
  353. *Font NewBaskerville-RomanItalic-DTC: Standard "(001.003)"
  354. *Font NewCenturySchlbk-Bold: Standard "(001.004)"
  355. *Font NewCenturySchlbk-BoldItalic: Standard "(001.003)"
  356. *Font NewCenturySchlbk-Italic: Standard "(001.003)"
  357. *Font NewCenturySchlbk-Roman: Standard "(001.003)"
  358. *Font OldTowne-DTC: Standard "(001.003)"
  359. *Font Optimum-Bold-DTC: Standard "(001.003)"
  360. *Font Optimum-BoldItalic-DTC: Standard "(001.003)"
  361. *Font Optimum-Roman-DTC: Standard "(001.003)"
  362. *Font Optimum-RomanItalic-DTC: Standard "(001.003)"
  363. *Font Palatino-Bold: Standard "(001.003)"
  364. *Font Palatino-BoldItalic: Standard "(001.003)"
  365. *Font Palatino-Italic: Standard "(001.003)"
  366. *Font Palatino-Roman: Standard "(001.003)"
  367. *Font Palton-Light-DTC: Standard "(001.003)"
  368. *Font ParkAvenue-DTC: Standard "(001.003)"
  369. *Font SansBlackCondensed-DTC: Standard "(001.003)"
  370. *Font SansBlackCondensed-Oblique-DTC: Standard "(001.003)"
  371. *Font SansExtended-Medium-DTC: Standard "(001.003)"
  372. *Font SansExtended-Regular-DTC: Standard "(001.003)"
  373. *Font SansExtended-RegularOblique-DTC: Standard "(001.003)"
  374. *Font SansExtraBlackCondensed-DTC: Standard "(001.003)"
  375. *Font SansLightExtended-DTC: Standard "(001.003)"
  376. *Font SansThinCondensed-DTC: Standard "(001.003)"
  377. *Font SansThinCondensed-Oblique-DTC: Standard "(001.003)"
  378. *Font Serpentine-Bold-DTC: Standard "(001.003)"
  379. *Font Souvenir-Demi-DTC: Standard "(001.003)"
  380. *Font Souvenir-DemiItalic-DTC: Standard "(001.003)"
  381. *Font Souvenir-Light-DTC: Standard "(001.003)"
  382. *Font Souvenir-LightItalic-DTC: Standard "(001.003)"
  383. *Font SquareSerif-Black-DTC: Standard "(001.003)"
  384. *Font SquareSerif-BlackItalic-DTC: Standard "(001.003)"
  385. *Font SquareSerif-Bold-DTC: Standard "(001.003)"
  386. *Font SquareSerif-BoldItalic-DTC: Standard "(001.003)"
  387. *Font SquareSerif-Light-DTC: Standard "(001.003)"
  388. *Font SquareSerif-LightItalic-DTC: Standard "(001.003)"
  389. *Font Symbol: Special "(001.003)"
  390. *Font Times-Bold: Standard "(001.003)"
  391. *Font Times-BoldItalic: Standard "(001.003)"
  392. *Font Times-Italic: Standard "(001.003)"
  393. *Font Times-Roman: Standard "(001.003)"
  394. *Font UniversityRoman-Bold-DTC: Standard "(001.003)"
  395. *Font UniversityRoman-DTC: Standard "(001.003)"
  396. *Font Vivante-DTC: Standard "(001.003)"
  397. *Font Windsor-Bold-DTC: Standard "(001.003)"
  398. *Font Windsor-DTC: Standard "(001.003)"
  399. *Font ZapfChancery-MediumItalic: Standard "(001.003)"
  400. *Font ZapfDingbats: Standard "(001.003)"
  401. *?FontQuery: "
  402. save  4 dict begin /sv exch def
  403. /str (fonts/                              ) def
  404. /st2 128 string def
  405. {
  406.   count 0 gt {
  407.     dup st2 cvs (/) print print (:) print
  408.     dup FontDirectory exch known {pop (Yes)}{
  409.      str exch st2 cvs dup length /len exch def
  410.      6 exch putinterval str 0 len 6 add getinterval mark exch
  411.      { } st2 filenameforall counttomark 0 gt {
  412.       cleartomark (Yes)}{cleartomark (No)}ifelse
  413.     }ifelse = flush
  414.   }{ exit } ifelse
  415. } bind loop 
  416. (*) = flush
  417. sv end restore
  418. "
  419. *End
  420.  
  421. *?FontList: "
  422. save  2 dict begin /sv exch def
  423. /str 128 string def
  424. FontDirectory { pop == } bind forall flush 
  425. /filenameforall where { 
  426.  pop save (fonts/*) { 
  427.   dup length 6 sub 6 exch getinterval cvn ==  
  428.  } bind str filenameforall flush restore
  429. } if 
  430. (*) = flush
  431. sv end restore
  432. "
  433. *End
  434.  
  435. *% Printer Messages (verbatim from printer):
  436. *Message: "%%[ exitserver: permanent state may be changed ]%%"
  437. *Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
  438. *Message: "\FontName\ not found, using Courier"
  439.  
  440. *% Status (format: %%[ status: <one of these> ]%% )
  441. *Status: "idle"
  442. *Status: "busy"
  443. *Status: "waiting"
  444. *Status: "printing"
  445. *Status: "warming up"
  446. *Status: "PrinterError: timeout, clearing printer"
  447. *Status: "PrinterError: warming up"
  448. *Status: "PrinterError: service call"
  449. *Status: "PrinterError: paper entry misfeed"
  450. *Status: "PrinterError: no toner cartridge"
  451. *Status: "PrinterError: paper entry misfeed"
  452.  
  453. *% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
  454. *Source: "serial"
  455. *Source: "parallel"
  456. *Source: "EtherTalk"
  457. *Source: "LocalTalk"
  458.  
  459. *% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
  460. *PrinterError: "timeout, clearing printer"
  461. *PrinterError: "warming up"
  462. *PrinterError: "service call"
  463. *PrinterError: "paper entry misfeed"
  464. *PrinterError: "no toner cartridge"
  465. *PrinterError: "paper entry misfeed"
  466.  
  467. *DeviceAdjustMatrix: "[1 0 0 1 0 0]"
  468.  
  469. *% Color Separation Information =====================
  470.  
  471. *DefaultColorSep: ProcessBlack.85lpi.1800x1800dpi/85 lpi / 1800 dpi
  472.  
  473. *InkName: ProcessBlack/Process Black
  474. *InkName: CustomColor/Custom Color
  475. *InkName: ProcessCyan/Process Cyan
  476. *InkName: ProcessMagenta/Process Magenta
  477. *InkName: ProcessYellow/Process Yellow
  478.  
  479.  
  480. *% For 133 lpi / 1800 dpi =====================================================
  481.  
  482. *ColorSepScreenAngle ProcessBlack.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "45"
  483. *ColorSepScreenAngle CustomColor.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "45"
  484. *ColorSepScreenAngle ProcessCyan.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "108.4"
  485. *ColorSepScreenAngle ProcessMagenta.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "161.6"
  486. *ColorSepScreenAngle ProcessYellow.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "90"
  487.  
  488. *ColorSepScreenFreq ProcessBlack.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "141.4"
  489. *ColorSepScreenFreq CustomColor.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "141.4"
  490. *ColorSepScreenFreq ProcessCyan.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "133.3"
  491. *ColorSepScreenFreq ProcessMagenta.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "133.3"
  492. *ColorSepScreenFreq ProcessYellow.133lpi.1800x1800dpi/133 lpi / 1800 dpi: "150"
  493.  
  494. *% For 110 lpi / 1800 dpi =====================================================
  495.  
  496. *ColorSepScreenAngle ProcessBlack.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "45"
  497. *ColorSepScreenAngle CustomColor.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "45"
  498. *ColorSepScreenAngle ProcessCyan.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "108.4"
  499. *ColorSepScreenAngle ProcessMagenta.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "161.6"
  500. *ColorSepScreenAngle ProcessYellow.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "90"
  501.  
  502. *ColorSepScreenFreq ProcessBlack.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "121.2"
  503. *ColorSepScreenFreq CustomColor.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "121.2"
  504. *ColorSepScreenFreq ProcessCyan.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "110"
  505. *ColorSepScreenFreq ProcessMagenta.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "110"
  506. *ColorSepScreenFreq ProcessYellow.110lpi.1800x1800dpi/110 lpi / 1800 dpi: "119"
  507.  
  508. *% For 100 lpi / 1800 dpi =====================================================
  509.  
  510. *ColorSepScreenAngle ProcessBlack.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "45"
  511. *ColorSepScreenAngle CustomColor.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "45"
  512. *ColorSepScreenAngle ProcessCyan.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "108.4"
  513. *ColorSepScreenAngle ProcessMagenta.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "161.6"
  514. *ColorSepScreenAngle ProcessYellow.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "90"
  515.  
  516. *ColorSepScreenFreq ProcessBlack.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "106.1"
  517. *ColorSepScreenFreq CustomColor.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "106.1"
  518. *ColorSepScreenFreq ProcessCyan.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "94.9"
  519. *ColorSepScreenFreq ProcessMagenta.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "94.9"
  520. *ColorSepScreenFreq ProcessYellow.100lpi.1800x1800dpi/100 lpi / 1800 dpi: "100"
  521.  
  522. *% For 85 lpi / 1800 dpi =====================================================
  523.  
  524. *ColorSepScreenAngle ProcessBlack.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "45"
  525. *ColorSepScreenAngle CustomColor.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "45"
  526. *ColorSepScreenAngle ProcessCyan.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "108.4"
  527. *ColorSepScreenAngle ProcessMagenta.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "161.6"
  528. *ColorSepScreenAngle ProcessYellow.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "90"
  529.  
  530. *ColorSepScreenFreq ProcessBlack.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "84.9"
  531. *ColorSepScreenFreq CustomColor.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "84.9"
  532. *ColorSepScreenFreq ProcessCyan.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "80"
  533. *ColorSepScreenFreq ProcessMagenta.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "80"
  534. *ColorSepScreenFreq ProcessYellow.85lpi.1800x1800dpi/85 lpi / 1800 dpi: "85"
  535.  
  536. *% For 70 lpi / 1800 dpi =====================================================
  537.  
  538. *ColorSepScreenAngle ProcessBlack.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "45"
  539. *ColorSepScreenAngle CustomColor.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "45"
  540. *ColorSepScreenAngle ProcessCyan.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "108.4"
  541. *ColorSepScreenAngle ProcessMagenta.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "161.6"
  542. *ColorSepScreenAngle ProcessYellow.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "90"
  543.  
  544. *ColorSepScreenFreq ProcessBlack.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "70.7"
  545. *ColorSepScreenFreq CustomColor.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "70.7"
  546. *ColorSepScreenFreq ProcessCyan.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "63.2"
  547. *ColorSepScreenFreq ProcessMagenta.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "63.2"
  548. *ColorSepScreenFreq ProcessYellow.70lpi.1800x1800dpi/70 lpi / 1800 dpi: "66.7"
  549.  
  550. *% For 60 lpi / 1800 dpi =====================================================
  551.  
  552. *ColorSepScreenAngle ProcessBlack.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "45"
  553. *ColorSepScreenAngle CustomColor.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "45"
  554. *ColorSepScreenAngle ProcessCyan.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "108.4"
  555. *ColorSepScreenAngle ProcessMagenta.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "161.6"
  556. *ColorSepScreenAngle ProcessYellow.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "90"
  557.  
  558. *ColorSepScreenFreq ProcessBlack.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "60.6"
  559. *ColorSepScreenFreq CustomColor.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "60.6"
  560. *ColorSepScreenFreq ProcessCyan.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "54.2"
  561. *ColorSepScreenFreq ProcessMagenta.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "54.2"
  562. *ColorSepScreenFreq ProcessYellow.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "57.1"
  563.  
  564. *ColorSepScreenProc ProcessBlack.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "
  565. { abs exch abs 2 copy add 1 gt
  566.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  567.         { dup mul exch dup mul add 1.0 exch sub }
  568.     ifelse }
  569. "
  570. *End
  571. *ColorSepScreenProc CustomColor.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "
  572.     { abs exch abs 2 copy add 1 gt
  573.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  574.         { dup mul exch dup mul add 1.0 exch sub }
  575.     ifelse }
  576. "
  577. *End
  578. *ColorSepScreenProc ProcessCyan.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "
  579.     { abs exch abs 2 copy add 1 gt
  580.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  581.         { dup mul exch dup mul add 1.0 exch sub }
  582.     ifelse }
  583. "
  584. *End
  585. *ColorSepScreenProc ProcessMagenta.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "
  586.     { abs exch abs 2 copy add 1 gt
  587.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  588.         { dup mul exch dup mul add 1.0 exch sub }
  589.     ifelse }
  590. "
  591. *End
  592. *ColorSepScreenProc ProcessYellow.60lpi.1800x1800dpi/60 lpi / 1800 dpi: "
  593.     { abs exch abs 2 copy add 1 gt
  594.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  595.         { dup mul exch dup mul add 1.0 exch sub }
  596.     ifelse }
  597. "
  598. *End
  599.  
  600. *% For 50 lpi / 1800 dpi =====================================================
  601.  
  602. *ColorSepScreenAngle ProcessBlack.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "45"
  603. *ColorSepScreenAngle CustomColor.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "45"
  604. *ColorSepScreenAngle ProcessCyan.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "108.4"
  605. *ColorSepScreenAngle ProcessMagenta.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "161.6"
  606. *ColorSepScreenAngle ProcessYellow.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "90"
  607.  
  608. *ColorSepScreenFreq ProcessBlack.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "53"
  609. *ColorSepScreenFreq CustomColor.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "53"
  610. *ColorSepScreenFreq ProcessCyan.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "47.4"
  611. *ColorSepScreenFreq ProcessMagenta.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "47.4"
  612. *ColorSepScreenFreq ProcessYellow.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "50"
  613.  
  614. *ColorSepScreenProc ProcessBlack.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "
  615.     { abs exch abs 2 copy add 1 gt
  616.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  617.         { dup mul exch dup mul add 1.0 exch sub }
  618.     ifelse }
  619. "
  620. *End
  621. *ColorSepScreenProc CustomColor.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "
  622.     { abs exch abs 2 copy add 1 gt
  623.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  624.         { dup mul exch dup mul add 1.0 exch sub }
  625.     ifelse }
  626. "
  627. *End
  628. *ColorSepScreenProc ProcessCyan.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "
  629.     { abs exch abs 2 copy add 1 gt
  630.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  631.         { dup mul exch dup mul add 1.0 exch sub }
  632.     ifelse }
  633. "
  634. *End
  635. *ColorSepScreenProc ProcessMagenta.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "
  636.     { abs exch abs 2 copy add 1 gt
  637.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  638.         { dup mul exch dup mul add 1.0 exch sub }
  639.     ifelse }
  640. "
  641. *End
  642. *ColorSepScreenProc ProcessYellow.50lpi.1800x1800dpi/50 lpi / 1800 dpi: "
  643.     { abs exch abs 2 copy add 1 gt
  644.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  645.         { dup mul exch dup mul add 1.0 exch sub }
  646.     ifelse }
  647. "
  648. *End
  649.  
  650. *% For 40 lpi / 1800 dpi =====================================================
  651.  
  652. *ColorSepScreenAngle ProcessBlack.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "45"
  653. *ColorSepScreenAngle CustomColor.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "45"
  654. *ColorSepScreenAngle ProcessCyan.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "108.4"
  655. *ColorSepScreenAngle ProcessMagenta.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "161.6"
  656. *ColorSepScreenAngle ProcessYellow.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "90"
  657.  
  658. *ColorSepScreenFreq ProcessBlack.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "42.4"
  659. *ColorSepScreenFreq CustomColor.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "42.4"
  660. *ColorSepScreenFreq ProcessCyan.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "37.9"
  661. *ColorSepScreenFreq ProcessMagenta.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "37.9"
  662. *ColorSepScreenFreq ProcessYellow.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "40"
  663.  
  664. *ColorSepScreenProc ProcessBlack.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "
  665.     { abs exch abs 2 copy add 1 gt
  666.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  667.         { dup mul exch dup mul add 1.0 exch sub }
  668.     ifelse }
  669. "
  670. *End
  671. *ColorSepScreenProc CustomColor.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "
  672.     { abs exch abs 2 copy add 1 gt
  673.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  674.         { dup mul exch dup mul add 1.0 exch sub }
  675.     ifelse }
  676. "
  677. *End
  678. *ColorSepScreenProc ProcessCyan.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "
  679.     { abs exch abs 2 copy add 1 gt
  680.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  681.         { dup mul exch dup mul add 1.0 exch sub }
  682.     ifelse }
  683. "
  684. *End
  685. *ColorSepScreenProc ProcessMagenta.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "
  686.     { abs exch abs 2 copy add 1 gt
  687.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  688.         { dup mul exch dup mul add 1.0 exch sub }
  689.     ifelse }
  690. "
  691. *End
  692. *ColorSepScreenProc ProcessYellow.40lpi.1800x1800dpi/40 lpi / 1800 dpi: "
  693.     { abs exch abs 2 copy add 1 gt
  694.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  695.         { dup mul exch dup mul add 1.0 exch sub }
  696.     ifelse }
  697. "
  698. *End
  699.  
  700. *% For 30 lpi / 1800 dpi =====================================================
  701.  
  702. *ColorSepScreenAngle ProcessBlack.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "45"
  703. *ColorSepScreenAngle CustomColor.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "45"
  704. *ColorSepScreenAngle ProcessCyan.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "108.4"
  705. *ColorSepScreenAngle ProcessMagenta.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "161.6"
  706. *ColorSepScreenAngle ProcessYellow.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "90"
  707.  
  708. *ColorSepScreenFreq ProcessBlack.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "35.4"
  709. *ColorSepScreenFreq CustomColor.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "35.4"
  710. *ColorSepScreenFreq ProcessCyan.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "31.6"
  711. *ColorSepScreenFreq ProcessMagenta.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "31.6"
  712. *ColorSepScreenFreq ProcessYellow.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "33.3"
  713.  
  714. *ColorSepScreenProc ProcessBlack.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "
  715.     { abs exch abs 2 copy add 1 gt
  716.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  717.         { dup mul exch dup mul add 1.0 exch sub }
  718.     ifelse }
  719. "
  720. *End
  721. *ColorSepScreenProc CustomColor.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "
  722.     { abs exch abs 2 copy add 1 gt
  723.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  724.         { dup mul exch dup mul add 1.0 exch sub }
  725.     ifelse }
  726. "
  727. *End
  728. *ColorSepScreenProc ProcessCyan.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "
  729.     { abs exch abs 2 copy add 1 gt
  730.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  731.         { dup mul exch dup mul add 1.0 exch sub }
  732.     ifelse }
  733. "
  734. *End
  735. *ColorSepScreenProc ProcessMagenta.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "
  736.     { abs exch abs 2 copy add 1 gt
  737.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  738.         { dup mul exch dup mul add 1.0 exch sub }
  739.     ifelse }
  740. "
  741. *End
  742. *ColorSepScreenProc ProcessYellow.30lpi.1800x1800dpi/30 lpi / 1800 dpi: "
  743.     { abs exch abs 2 copy add 1 gt
  744.         { 1 sub dup mul exch 1 sub dup mul add 1 sub }
  745.         { dup mul exch dup mul add 1.0 exch sub }
  746.     ifelse }
  747. "
  748. *End
  749.  
  750. *% For 70 lpi / 600 dpi =====================================================
  751.  
  752. *ColorSepScreenAngle ProcessBlack.70lpi.600x600dpi/70 lpi / 600 dpi: "45"
  753. *ColorSepScreenAngle CustomColor.70lpi.600x600dpi/70 lpi / 600 dpi: "45"
  754. *ColorSepScreenAngle ProcessCyan.70lpi.600x600dpi/70 lpi / 600 dpi: "108.4"
  755. *ColorSepScreenAngle ProcessMagenta.70lpi.600x600dpi/70 lpi / 600 dpi: "161.6"
  756. *ColorSepScreenAngle ProcessYellow.70lpi.600x600dpi/70 lpi / 600 dpi: "90"
  757.  
  758. *ColorSepScreenFreq ProcessBlack.70lpi.600x600dpi/70 lpi / 600 dpi: "70.7"
  759. *ColorSepScreenFreq CustomColor.70lpi.600x600dpi/70 lpi / 600 dpi: "70.7"
  760. *ColorSepScreenFreq ProcessCyan.70lpi.600x600dpi/70 lpi / 600 dpi: "63.2"
  761. *ColorSepScreenFreq ProcessMagenta.70lpi.600x600dpi/70 lpi / 600 dpi: "63.2"
  762. *ColorSepScreenFreq ProcessYellow.70lpi.600x600dpi/70 lpi / 600 dpi: "66.7"
  763.  
  764. *% end of PPD file for Unity 1800XL-O
  765.